home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / Technical Documentation / develop / develop Issue 24 / develop Issue 24 code / Scriptable Database 1.0a15 / Base / UniqueID.h < prev   
Encoding:
Text File  |  1996-04-25  |  431 b   |  19 lines  |  [TEXT/CWIE]

  1. //================================================================================
  2. // Greg Anderson
  3. // db+
  4. //
  5. // A single long word isn't quite long enough to make a truly unique ID.
  6. // 64 bits is probably enough, though.
  7. // 17 May 1994
  8. //================================================================================
  9. #pragma once
  10.  
  11. #ifndef __UNIQUEID__
  12. #define __UNIQUEID__
  13.  
  14. #include "Int64.h"
  15.  
  16. Int64 GenerateUniqueID();
  17.  
  18. #endif
  19.